.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #5d5d5d;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
    
.logo {
  flex: 1;
}
    
.logo img {
  height: 100px;
  margin: right 0;;
}
    
.zoekwoorden {
  display: flex; 
  margin-left: -20px;
  gap: 35px; 
  cursor: pointer;
  border: #000000;
  border-radius: 20px;
}
    
.zoekwoorden span a {
  font-size: 20px; 
  font-weight: bold; 
  text-decoration: none; 
  text-decoration-color: black;
  margin: 20px;
}
    
a{ 
  color: #000000;
}
    
.search-container {
  position: relative;
  width: 100%;
  max-width: 400px; 
  margin: 20px auto;
}

#search {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  display: block;
}

.suggestions-list {
  position: absolute;
  top: 100%; 
  left: 0;
  width: 100%; 
  background-color: white;
  border: 1px solid #ddd;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  z-index: 1000; 
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
}

.suggestions-list li {
  padding: 10px;
  cursor: pointer;
  color: black; 
  text-decoration: none; 
}

.suggestions-list li:hover {
  background-color: #f4f4f4;
}

.suggestions-list li.clickable {
  color: rgb(0, 0, 0); 
}

.inloggen-knop {
  padding: 10px 15px; 
  font-size: 16px; 
  border: none; 
  background-color: #007bff; 
  color: white; 
  border-radius: 5px; 
  cursor: pointer; 
  margin: 35px;
}
    
.winkelmandje {
  font-size: 24px; 
  cursor: pointer; 
  margin: 35px;
}
  
.aantal {
  position: absolute; 
  top: 42px; 
  right: 42px; 
  background-color: red; 
  color: white; 
  border-radius: 50%; 
  width: 15px; 
  height: 15px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 14px; 
}
    
main {
  padding: 20px;
}
    
.winkelwagenleeg{
  font-size: 24px;
  text-align: center;
}

.blocks {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.block1 {
  width: 275px;
  height: 60px;
  margin: 0 10px;
  background-color: lightgray;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block2 {
  width: 150px;
  height: 60px;
  margin: 0 10px;
  background-color: lightgray;
  display: flex;
  align-items: center;
  justify-content: center;
}

.total {
  margin-top: 20px;
  font-size: 1.5em;
}
    
.checkout {
  background-color: #35424a;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}
    
.checkout:hover {
  background-color: #45a049;
}
    
footer {
  padding: 20px; 
  text-align: center; 
  background-color: #5d5d5d;
  margin: 0;
  margin-right: 15px;
  margin-right: 15px;
  color: #ffffff;
}
    
footer a{
  color: #ffffff;
  margin: 15px;
}